home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr47
/
316_01.zip
/
TIME.C
< prev
next >
Wrap
Text File
|
1993-04-01
|
375b
|
33 lines
/* time, ctime for mark williams C, version 3.0.2 */
char *index();
char *rindex();
/* simulate time ctime */
char *dumtim = "";
long time()
{
return(0L);
}
char *ctime()
{
return(dumtim);
}
char *strchr(ptr, c)
char *ptr;
int c;
{
return( index(ptr, c) );
}
char *strrchr(ptr, c)
char *ptr;
int c;
{
return( rindex(ptr, c) );
}